home *** CD-ROM | disk | FTP | other *** search
/ SuperModels in the Rainforest / SuperModels in the Rainforest.iso / rain.dxr / 00484.ls < prev    next >
Encoding:
Text File  |  1995-10-13  |  387 b   |  19 lines

  1. on exitFrame
  2.   if rollOver(18) then
  3.     repeat with x = 5 to 9
  4.       set the visible of sprite x to 1
  5.     end repeat
  6.   else
  7.     repeat with x = 5 to 9
  8.       set the visible of sprite x to 0
  9.     end repeat
  10.   end if
  11.   repeat with x = 23 to 29
  12.     if rollOver(x) then
  13.       set the visible of sprite x to 1
  14.       next repeat
  15.     end if
  16.     set the visible of sprite x to 0
  17.   end repeat
  18. end
  19.